Maeckes logo

fx-9860GII


M→L

On a Casio calculator you can assign the contents of a matrix column to a list

  MAT M→L
OPTN F2 F2

or via the CATALOG as

CATALOGP INPUT
SHIFT 4  Mat➔List(  F1

You can use the command any time in the RUN·MAT, STAT, TABLE, EQUA and PRGM modes.

 


Explanation

The syntax for the Mat➔List command is

Mat➔List(Mat Xm) ➔ List n

where

    X Matrix name (A∼Z)
    m Column number
    n List number

 


Example 1

In the matrix memories we have

Mat F =  2 −1 3 19
1 1 −5 −21
0 4 3 0

To transfer column 2 of Mat F

  MAT M→L Mat
OPTN F2 F2 F2  F  ٬ 2 ) Mat➔List(Mat F,2)
 

to List 1

LIST List Mat➔List(Mat F,2)➔Lis
t 1
OPTN F1 F1 1 EXE
Done

and show the contents of List 1

List
F1 1 EXE

This gives for SET UP Input/Output Line

AnS
1 -1
2 1
3 4
 
-1

and for SET UP Input/Output Math

Mat➔List(Mat F,2)➔Li:▷
{-1,1,4}